home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / comms / netsoftware / ftpdaemon.lha / ftpd2 / cmdimp.h next >
C/C++ Source or Header  |  1993-09-06  |  519b  |  22 lines

  1. #ifndef _CMDIMP_H
  2. #define _CMDIMP_H 1
  3.  
  4. void renamecmd(char *from, char *to);
  5. void pwd(void);
  6. char *renamefrom(char *name);
  7. void delete(char *name);
  8. void makedir(char *name);
  9. void statcmd(void);
  10. void cwd(char *path);
  11. void retrieve(char *cmd,char *name);
  12. void statfilecmd(char *filename);
  13. void send_file_list(char *witchfiles);
  14. void removedir(char *name);
  15. void store(char *name,char *mode,int unique);
  16. void passive(void);
  17. void user(char *name);
  18. void dologout(int status);
  19. void pass(char *passwd);
  20.  
  21. #endif /* _CMDIMP_H */
  22.